DevJourney

Python/VIT/sem-1/ex-06/1. Student Attendance/if else.py

actA=float(input("Enter the attendance percentage of student: "))
minA=75
if actA>=minA:
    print("Student is permitted")
else:
    print("Student not permitted")
View on GitHub